#!/bin/bash
#Author Kris Occhipinti https://filmsbykris.com
#Copyright Jan 10th 2018
#License GPLv3 https://www.gnu.org/licenses/gpl-3.0.txt
#Description: to be used to view links in a mailbox/mbox file
#created for use with Mutt

message=$(cat)
#echo "$message"|sed 's/=$//g'|sed 's/=3D/=/g'|sed ':a;N;$!ba;s/\n//g'|sed 's/"/\n/g'|sed 's/http/\nhttp/g'|grep http|less
echo "$message"|\
  sed 's/=$//g'|\
  sed 's/=3D/=/g'|\
  sed ':a;N;$!ba;s/\n//g'|\
  sed 's/"/\n/g'|\
  sed 's/http/\nhttp/g'|\
  grep http|\
  less